home *** CD-ROM | disk | FTP | other *** search
/ Directorty Opus 5 - Magellan 2 / Opus 5 - Magellan 2.iso / Extras / DOpusXFD / Install_DOpusXFD < prev    next >
Text File  |  1996-09-09  |  2KB  |  84 lines

  1. ; $VER: Install_DOpusXFD 1.01 (9.9.96)
  2. ; Install script for DOpusXFD
  3.  
  4. (set srcdir "")
  5. (set destdir "Dopus5:")
  6. (set @default-dest destdir)
  7.  
  8. ;========================================================
  9. ; Copy Main Program
  10.  
  11. (copyfiles
  12.     (prompt "Copying DOpusXFD to destination.")
  13.     (help @copyfiles-help)
  14.     (source (tackon srcdir "C/DOpusXFD"))
  15.     (dest (tackon destdir "C"))
  16.     (infos)
  17.     (confirm)
  18. )
  19.  
  20. (complete 20)
  21.  
  22. ;========================================================
  23. ; Copy Filetype
  24.  
  25. (copyfiles
  26.         (prompt "Copying XFD filetype to destination.")
  27.         (help @copyfiles-help)
  28.         (source (tackon srcdir "Filetypes/XFD"))
  29.         (dest (tackon destdir "Filetypes"))
  30.         (infos)
  31.         (confirm)
  32. )
  33.  
  34. (complete 40)
  35.  
  36. ;========================================================
  37. ; Copy Main Program
  38.  
  39. (copyfiles
  40.         (prompt "Copying DOpusXFD Guide to destination.")
  41.         (help @copyfiles-help)
  42.         (source (tackon srcdir "Docs/DOpusXFD.guide"))
  43.         (dest (tackon destdir "C"))
  44.         (infos)
  45.         (confirm)
  46. )
  47.  
  48. (complete 60)
  49.  
  50. ;========================================================
  51. ; Copy Libs
  52.  
  53. (copylib
  54.         (prompt ("\n\nInstalling xfdmaster.library"))
  55.         (help @copylib-help)
  56.         (source (tackon srcdir "libs/xfdmaster.library"))
  57.         (dest "LIBS:")
  58.         (confirm)
  59. )
  60.  
  61. (complete 80)
  62.  
  63. (copyfiles
  64.         (prompt ("\n\nInstalling xfdmaster sub-libraries"))
  65.         (help @copylib-help)
  66.         (source (tackon srcdir "libs/xfd1"))
  67.         (dest "LIBS:xfd")
  68.         (pattern "#?")
  69.         (confirm)
  70. )
  71.  
  72. (copyfiles
  73.         (prompt ("\n\nInstalling xfdmaster sub-libraries"))
  74.         (help @copylib-help)
  75.         (source (tackon srcdir "libs/xfd2"))
  76.         (dest "LIBS:xfd")
  77.         (pattern "#?")
  78.         (confirm)
  79. )
  80.  
  81. (complete 100)
  82.  
  83. (exit)
  84.